home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 May: Tool Chest / Developer CD Series Tool Chest (Apple Computer)(May 1999).iso / Tool Chest / Development Kits / MPW etc / MPW-GM / MPW / Examples / CFMExamples / ModApp / ModuleCFRG.r < prev    next >
Encoding:
Text File  |  1998-12-03  |  594 b   |  35 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        ModuleCFRG.r
  3.  
  4.     Contains:    template for a plug-in cfrg
  5.  
  6.     Written by:    Brian Strull
  7.  
  8.     Copyright:    © 1994 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.  
  12.                   8/15/94    BLS        First release
  13.  
  14.     To Do:
  15. */
  16.  
  17. #include "CodeFragmentTypes.r"
  18.  
  19.  
  20. // The following builds up a cfrg resource for a plug-in.
  21. // It assumes that ARCH and TOOLNAME were defined on the
  22. // command line.
  23.  
  24. resource 'cfrg' (0) 
  25. {
  26.     {
  27.         ARCH,
  28.         kFullLib,
  29.         kNoVersionNum, kNoVersionNum,
  30.         kDefaultStackSize, kNoAppSubFolder,
  31.          kIsDropIn,kOnDiskFlat,kZeroOffset,kWholeFork,
  32.         TOOLNAME
  33.     }    
  34. };
  35.